home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / include / exit_status.h next >
Encoding:
C/C++ Source or Header  |  1991-10-20  |  399 b   |  24 lines

  1. #ifndef EXIT_STATUS_DEFINED
  2.  
  3. #define EXIT_STATUS_DEFINED
  4.  
  5. #ifdef __STDC__
  6.  
  7. #   define EXIT_STATUS_SUCCESS  0
  8. #   define EXIT_STATUS_FAILURE  1
  9.  
  10. #else
  11.  
  12. #   ifdef VMS
  13. #       define EXIT_STATUS_SUCCESS      (1 | 0x10000000)
  14. #       define EXIT_STATUS_FAILURE      (0 | 0x10000000)
  15. #   else
  16. #       define EXIT_STATUS_SUCCESS      0
  17. #       define EXIT_STATUS_FAILURE      1
  18. #   endif
  19.  
  20. #endif
  21.  
  22.  
  23. #endif
  24.